home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World Komputer 2010 April
/
PCWorld0410.iso
/
pluginy Firefox
/
4287
/
4287.xpi
/
chrome
/
splitbrowser.jar
/
content
/
splitbrowser
/
sanitize
/
sanitizeOverlay.js
next >
Wrap
Text File
|
2009-11-05
|
462b
|
26 lines
Sanitizer.prototype.items.splitBrowserUndoCache = {
clear : function()
{
this._module.clearEntries(this.range);
this._module.saveEntries();
},
get canClear()
{
return true;
},
range : null,
get _module()
{
if (!this.__module) {
this.__module = {};
Components.utils.import(
'resource://splitbrowser-modules/undoCache.js',
this.__module
);
}
return this.__module.undoCache;
},
__module : null,
};